home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / d / disksalviv.dms / disksalviv.adf / DiskSalv.pattern < prev    next >
Text File  |  1995-12-18  |  637b  |  34 lines

  1. /* The default patterns for DiskSalv */
  2.  
  3. /* This pattern matches only files that haven't
  4.    been archived.  Suggested for use with the
  5.    Backup Mode. */
  6.  
  7. pattern "Unarchived Only" {
  8.    protection("!A");
  9.    match("include");
  10. };
  11.  
  12. /* This pattern only matches things that fit on
  13.    floppy disks. */
  14.  
  15. pattern "Fits On Floppy" {
  16.    size("<", 840K);
  17.    match("include");
  18. };
  19.  
  20. /* This pattern only matches things that are too
  21.    big for floppies. */
  22.  
  23. pattern "Too Big For Floppy" {
  24.    size(">", 840K);
  25.    match("include");
  26. };
  27.  
  28. /* This pattern excludes all .info files. */
  29.  
  30. pattern "No .Info Files" {
  31.    path("#?.info");
  32.    match("exclude");
  33. };
  34.